.radio-control .ant-radio-inner {
    margin-top: 4px;
}

/* Loading Overlay Styles */
.loading-overlay {
  position: relative;
}

.loading-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.loading-spinner {
  z-index: 20;
}

/* OTP Input Styles */
.otp-input-antd {
  width: 100%;
  max-width: 300px;
}

.otp-input-antd .ant-input-otp-input {
  width: 64px !important;
  height: 64px !important;
  font-size: 24px !important;
  font-weight: bold !important;
  text-align: center !important;
  border: 2px solid #d1d5db !important;
  border-radius: 12px !important;
  background-color: #15241C !important;
  color: white !important;
  transition: all 0.2s ease !important;
}

.otp-input-antd .ant-input-otp-input:focus {
  border-color: #D4AF37 !important;
  outline: none !important;
  transform: scale(1.05) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3) !important;
}

.otp-input-antd .ant-input-otp-input:not(:placeholder-shown) {
  border-color: #10b981 !important;
}

.otp-input-antd .ant-input-otp-input::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive OTP Input */
@media (max-width: 640px) {
  .otp-input-antd .ant-input-otp-input {
    width: 56px !important;
    height: 56px !important;
    font-size: 20px !important;
  }
}